登录:
ssh -i ~/.ssh/cloud_key 用户名@内网IP
1
传输文件(夹):
scp
scp -i ~/.ssh/cloud_key file.txt 用户名@内网IP
scp -i ~/.ssh/cloud_key -r filedir 用户名@内网IP
1
2
sftp
登录:
sftp -i ~/.ssh/cloud_key 用户名@内网IP
1
登陆后:
put -r dir1 dir2
get -r dir1 dir2
ls
1
2
3
更多 (opens new window)